home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / constmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  308 b   |  23 lines

  1. #ifndef CONSTMAP_H
  2. #define CONSTMAP_H
  3.  
  4. typedef unsigned long constmap_hash;
  5.  
  6. struct constmap
  7.  {
  8.   int num;
  9.   constmap_hash mask;
  10.   constmap_hash *hash;
  11.   int *first;
  12.   int *next;
  13.   char **input;
  14.   int *inputlen;
  15.  }
  16. ;
  17.  
  18. extern int constmap_init();
  19. extern void constmap_free();
  20. extern char *constmap();
  21.  
  22. #endif
  23.